home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Inspectors / WrapperInspector / SoundSubInspector.h < prev    next >
Text File  |  1995-06-12  |  1KB  |  42 lines

  1. //----------------------------------------------------------------------------------------------------
  2. //
  3. //    SoundSubInspector
  4. //
  5. //    Inherits From:        DefaultSubInspector
  6. //
  7. //    Declared In:        SoundSubInspector.h
  8. //
  9. //    Class Description
  10. //
  11. //        SoundSubInspector manages subinspection of 'snd' files.
  12. //        
  13. //    Disclaimer
  14. //
  15. //        You may freely copy, distribute and reuse this software and its
  16. //        associated documentation. I disclaim any warranty of any kind, 
  17. //        expressed or implied, as to its fitness for any particular use.
  18. //
  19. //----------------------------------------------------------------------------------------------------
  20. #import "DefaultSubInspector.h"
  21.  
  22.  
  23. @interface SoundSubInspector : DefaultSubInspector
  24. {
  25.     id    sound;
  26.  
  27.     id    size;
  28.     id    samples;
  29.     id    seconds;
  30.     id    format;
  31.     id    rate;
  32.     id    channels;
  33.     id     info;
  34. }
  35.  
  36. //----------------------------------------------------------------------------------------------------
  37. //  Action Methods
  38. //----------------------------------------------------------------------------------------------------
  39. - play: sender;
  40.  
  41.  
  42. @end